Multiple sets

Method Description
Execute(cmd).ToResultsSet<T1, T2> returns an object derived from the data reader

Execute(cmd).ToResultsSet<\T1, T2>

The blocks support executing multiple ResultSets within a single query. Given the example where we would like to get the ProductCategory the ProductSubCategory and the ProductNameAndNumber we could execute this as three methods:

    public IList<ProductCategory> GetProductCategory()
    {
        var sql = @"Select ProductCategoryID, Name from [Production].[ProductCategory]";
        var cmd = CreateTextCommand(sql);
        return Execute(cmd).ToList<ProductCategory>();
    }

    public IList<ProductSubCategory> GetProductSubCategory()
    {
        var sql = @"Select ProductCategoryID, ProductSubCategoryID, Name  from [Production].[ProductSubcategory]";
        var cmd = CreateTextCommand(sql);
        return Execute(cmd).ToList<ProductSubCategory>();
    }
    public IList<ProductNameAndNumber> GetProductNameAndNumber()
    {
        var sql = @"Select ProductID, ProductSubCategoryID, Name, ProductNumber from [Production].[Product] where ProductSubcategoryID is not null;";
        var cmd = CreateTextCommand(sql);
        return Execute(cmd).ToList<ProductNameAndNumber>();
    }

If we know we always what to work with all three sets of data we can execute wrap execute up into a single ToResultsSet. The key advantage is less wait time as all three sets can be fetched from the database at the same time.

To do this simply execute the result into ToResultsSet<T1, T2, ... T5> the blocks have support for up to 5 result sets in a single statement.

        public ResultsSet<ProductCategory, ProductSubCategory, ProductNameAndNumber> GetProjectCategoryResultSet()
        {
            var sql = @"
Select ProductCategoryID, Name from [Production].[ProductCategory];
Select ProductCategoryID, ProductSubCategoryID, Name  from [Production].[ProductSubcategory];
Select ProductID, ProductSubCategoryID, Name, ProductNumber from [Production].[Product] where ProductSubcategoryID is not null;
";
            var cmd = CreateTextCommand(sql);
            return Execute(cmd).ToResultsSet<ProductCategory, ProductSubCategory, ProductNameAndNumber>();
        }

Note there is no automatic aggregation of results.